home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2001 Haziran / CHIP Haziran2001.iso / prog / haziran / 20 / setup.exe / {app} / plugins / XQ Windows Version.xpl < prev    next >
Encoding:
XSetup plugin  |  2001-03-28  |  971 b   |  37 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="5"
  4. "UIPATH"="Information\Core"
  5. "NAME"="Windows Version"
  6. "VERSION"="0.004"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Windows 95 (W95)"
  9. "TEXT 2"="Windows NT (WNT)"
  10. "TEXT 3"="Windows 98 (W98)"
  11. "TEXT 4"="Windows 2000 (W2K)"
  12. "TEXT 5"="Windows Millennium (WinME)"
  13. "DESCRIPTION 1"="This plug-in shows which OS you are running (very useful, isn't it?)"
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17.  
  18.  
  19. 'Called when the Plugin is started
  20. Sub Plugin_Initialize
  21.  i=GetWinVer
  22.  SetUIElement i,True
  23.  Disable 
  24. End Sub
  25.  
  26. 'Called when the Plugin should validate the Data the user has entered
  27. Sub Plugin_CheckData(ElementIndex)
  28. End Sub
  29.  
  30. 'Called when the Plugin should apply the changes
  31. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  32. End Sub
  33.  
  34. 'Called when the Plugin is about to be removed from memory
  35. Sub Plugin_Terminate
  36. End Sub
  37.